home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / misc / memmgrb3.lha / MemManagerBeta3 / C / include / libraries / memmanager.h
Encoding:
C/C++ Source or Header  |  1996-09-23  |  436 b   |  18 lines

  1. #ifndef LIBRARIES_MEMMANAGER_H
  2. #define LIBRARIES_MEMMANAGER_H
  3.  
  4. /*
  5. ** Simple header file for the memory manager library by Robert Ennals
  6. ** All structures used by the library are private so are not defined in here
  7. **
  8. ** Memory flags
  9. ** Only too at the moment but loads more should appear soon :-))
  10. */
  11.  
  12. #define disposable  0x00000002
  13. #define paged       0x00000004
  14.  
  15. /* Other memory types will follow soon, including ChipToFast */
  16.  
  17. #endif
  18.